home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / perl5 / HTML / Parser.pm < prev    next >
Text File  |  2009-11-05  |  40KB  |  1,243 lines

  1. package HTML::Parser;
  2.  
  3. # Copyright 1996-2008, Gisle Aas.
  4. # Copyright 1999-2000, Michael A. Chase.
  5. #
  6. # This library is free software; you can redistribute it and/or
  7. # modify it under the same terms as Perl itself.
  8.  
  9. use strict;
  10. use vars qw($VERSION @ISA);
  11.  
  12. $VERSION = "3.61";
  13.  
  14. require HTML::Entities;
  15.  
  16. require XSLoader;
  17. XSLoader::load('HTML::Parser', $VERSION);
  18.  
  19. sub new
  20. {
  21.     my $class = shift;
  22.     my $self = bless {}, $class;
  23.     return $self->init(@_);
  24. }
  25.  
  26.  
  27. sub init
  28. {
  29.     my $self = shift;
  30.     $self->_alloc_pstate;
  31.  
  32.     my %arg = @_;
  33.     my $api_version = delete $arg{api_version} || (@_ ? 3 : 2);
  34.     if ($api_version >= 4) {
  35.     require Carp;
  36.     Carp::croak("API version $api_version not supported " .
  37.             "by HTML::Parser $VERSION");
  38.     }
  39.  
  40.     if ($api_version < 3) {
  41.     # Set up method callbacks compatible with HTML-Parser-2.xx
  42.     $self->handler(text    => "text",    "self,text,is_cdata");
  43.     $self->handler(end     => "end",     "self,tagname,text");
  44.     $self->handler(process => "process", "self,token0,text");
  45.     $self->handler(start   => "start",
  46.                           "self,tagname,attr,attrseq,text");
  47.  
  48.     $self->handler(comment =>
  49.                sub {
  50.                my($self, $tokens) = @_;
  51.                for (@$tokens) {
  52.                    $self->comment($_);
  53.                }
  54.                }, "self,tokens");
  55.  
  56.     $self->handler(declaration =>
  57.                sub {
  58.                my $self = shift;
  59.                $self->declaration(substr($_[0], 2, -1));
  60.                }, "self,text");
  61.     }
  62.  
  63.     if (my $h = delete $arg{handlers}) {
  64.     $h = {@$h} if ref($h) eq "ARRAY";
  65.     while (my($event, $cb) = each %$h) {
  66.         $self->handler($event => @$cb);
  67.     }
  68.     }
  69.  
  70.     # In the end we try to assume plain attribute or handler
  71.     while (my($option, $val) = each %arg) {
  72.     if ($option =~ /^(\w+)_h$/) {
  73.         $self->handler($1 => @$val);
  74.     }
  75.         elsif ($option =~ /^(text|start|end|process|declaration|comment)$/) {
  76.         require Carp;
  77.         Carp::croak("Bad constructor option '$option'");
  78.         }
  79.     else {
  80.         $self->$option($val);
  81.     }
  82.     }
  83.  
  84.     return $self;
  85. }
  86.  
  87.  
  88. sub parse_file
  89. {
  90.     my($self, $file) = @_;
  91.     my $opened;
  92.     if (!ref($file) && ref(\$file) ne "GLOB") {
  93.         # Assume $file is a filename
  94.         local(*F);
  95.         open(F, $file) || return undef;
  96.     binmode(F);  # should we? good for byte counts
  97.         $opened++;
  98.         $file = *F;
  99.     }
  100.     my $chunk = '';
  101.     while (read($file, $chunk, 512)) {
  102.     $self->parse($chunk) || last;
  103.     }
  104.     close($file) if $opened;
  105.     $self->eof;
  106. }
  107.  
  108.  
  109. sub netscape_buggy_comment  # legacy
  110. {
  111.     my $self = shift;
  112.     require Carp;
  113.     Carp::carp("netscape_buggy_comment() is deprecated.  " .
  114.            "Please use the strict_comment() method instead");
  115.     my $old = !$self->strict_comment;
  116.     $self->strict_comment(!shift) if @_;
  117.     return $old;
  118. }
  119.  
  120. # set up method stubs
  121. sub text { }
  122. *start       = \&text;
  123. *end         = \&text;
  124. *comment     = \&text;
  125. *declaration = \&text;
  126. *process     = \&text;
  127.  
  128. 1;
  129.  
  130. __END__
  131.  
  132.  
  133. =head1 NAME
  134.  
  135. HTML::Parser - HTML parser class
  136.  
  137. =head1 SYNOPSIS
  138.  
  139.  use HTML::Parser ();
  140.  
  141.  # Create parser object
  142.  $p = HTML::Parser->new( api_version => 3,
  143.                          start_h => [\&start, "tagname, attr"],
  144.                          end_h   => [\&end,   "tagname"],
  145.                          marked_sections => 1,
  146.                        );
  147.  
  148.  # Parse document text chunk by chunk
  149.  $p->parse($chunk1);
  150.  $p->parse($chunk2);
  151.  #...
  152.  $p->eof;                 # signal end of document
  153.  
  154.  # Parse directly from file
  155.  $p->parse_file("foo.html");
  156.  # or
  157.  open(my $fh, "<:utf8", "foo.html") || die;
  158.  $p->parse_file($fh);
  159.  
  160. =head1 DESCRIPTION
  161.  
  162. Objects of the C<HTML::Parser> class will recognize markup and
  163. separate it from plain text (alias data content) in HTML
  164. documents.  As different kinds of markup and text are recognized, the
  165. corresponding event handlers are invoked.
  166.  
  167. C<HTML::Parser> is not a generic SGML parser.  We have tried to
  168. make it able to deal with the HTML that is actually "out there", and
  169. it normally parses as closely as possible to the way the popular web
  170. browsers do it instead of strictly following one of the many HTML
  171. specifications from W3C.  Where there is disagreement, there is often
  172. an option that you can enable to get the official behaviour.
  173.  
  174. The document to be parsed may be supplied in arbitrary chunks.  This
  175. makes on-the-fly parsing as documents are received from the network
  176. possible.
  177.  
  178. If event driven parsing does not feel right for your application, you
  179. might want to use C<HTML::PullParser>.  This is an C<HTML::Parser>
  180. subclass that allows a more conventional program structure.
  181.  
  182.  
  183. =head1 METHODS
  184.  
  185. The following method is used to construct a new C<HTML::Parser> object:
  186.  
  187. =over
  188.  
  189. =item $p = HTML::Parser->new( %options_and_handlers )
  190.  
  191. This class method creates a new C<HTML::Parser> object and
  192. returns it.  Key/value argument pairs may be provided to assign event
  193. handlers or initialize parser options.  The handlers and parser
  194. options can also be set or modified later by the method calls described below.
  195.  
  196. If a top level key is in the form "<event>_h" (e.g., "text_h") then it
  197. assigns a handler to that event, otherwise it initializes a parser
  198. option. The event handler specification value must be an array
  199. reference.  Multiple handlers may also be assigned with the 'handlers
  200. => [%handlers]' option.  See examples below.
  201.  
  202. If new() is called without any arguments, it will create a parser that
  203. uses callback methods compatible with version 2 of C<HTML::Parser>.
  204. See the section on "version 2 compatibility" below for details.
  205.  
  206. The special constructor option 'api_version => 2' can be used to
  207. initialize version 2 callbacks while still setting other options and
  208. handlers.  The 'api_version => 3' option can be used if you don't want
  209. to set any options and don't want to fall back to v2 compatible
  210. mode.
  211.  
  212. Examples:
  213.  
  214.  $p = HTML::Parser->new(api_version => 3,
  215.                         text_h => [ sub {...}, "dtext" ]);
  216.  
  217. This creates a new parser object with a text event handler subroutine
  218. that receives the original text with general entities decoded.
  219.  
  220.  $p = HTML::Parser->new(api_version => 3,
  221.             start_h => [ 'my_start', "self,tokens" ]);
  222.  
  223. This creates a new parser object with a start event handler method
  224. that receives the $p and the tokens array.
  225.  
  226.  $p = HTML::Parser->new(api_version => 3,
  227.                 handlers => { text => [\@array, "event,text"],
  228.                                       comment => [\@array, "event,text"],
  229.                                     });
  230.  
  231. This creates a new parser object that stores the event type and the
  232. original text in @array for text and comment events.
  233.  
  234. =back
  235.  
  236. The following methods feed the HTML document
  237. to the C<HTML::Parser> object:
  238.  
  239. =over
  240.  
  241. =item $p->parse( $string )
  242.  
  243. Parse $string as the next chunk of the HTML document.  The return
  244. value is normally a reference to the parser object (i.e. $p).
  245. Handlers invoked should not attempt to modify the $string in-place until
  246. $p->parse returns.
  247.  
  248. If an invoked event handler aborts parsing by calling $p->eof, then
  249. $p->parse() will return a FALSE value.
  250.  
  251. =item $p->parse( $code_ref )
  252.  
  253. If a code reference is passed as the argument to be parsed, then the
  254. chunks to be parsed are obtained by invoking this function repeatedly.
  255. Parsing continues until the function returns an empty (or undefined)
  256. result.  When this happens $p->eof is automatically signaled.
  257.  
  258. Parsing will also abort if one of the event handlers calls $p->eof.
  259.  
  260. The effect of this is the same as:
  261.  
  262.  while (1) {
  263.     my $chunk = &$code_ref();
  264.     if (!defined($chunk) || !length($chunk)) {
  265.         $p->eof;
  266.         return $p;
  267.     }
  268.     $p->parse($chunk) || return undef;
  269.  }
  270.  
  271. But it is more efficient as this loop runs internally in XS code.
  272.  
  273. =item $p->parse_file( $file )
  274.  
  275. Parse text directly from a file.  The $file argument can be a
  276. filename, an open file handle, or a reference to an open file
  277. handle.
  278.  
  279. If $file contains a filename and the file can't be opened, then the
  280. method returns an undefined value and $! tells why it failed.
  281. Otherwise the return value is a reference to the parser object.
  282.  
  283. If a file handle is passed as the $file argument, then the file will
  284. normally be read until EOF, but not closed.
  285.  
  286. If an invoked event handler aborts parsing by calling $p->eof,
  287. then $p->parse_file() may not have read the entire file.
  288.  
  289. On systems with multi-byte line terminators, the values passed for the
  290. offset and length argspecs may be too low if parse_file() is called on
  291. a file handle that is not in binary mode.
  292.  
  293. If a filename is passed in, then parse_file() will open the file in
  294. binary mode.
  295.  
  296. =item $p->eof
  297.  
  298. Signals the end of the HTML document.  Calling the $p->eof method
  299. outside a handler callback will flush any remaining buffered text
  300. (which triggers the C<text> event if there is any remaining text).
  301.  
  302. Calling $p->eof inside a handler will terminate parsing at that point
  303. and cause $p->parse to return a FALSE value.  This also terminates
  304. parsing by $p->parse_file().
  305.  
  306. After $p->eof has been called, the parse() and parse_file() methods
  307. can be invoked to feed new documents with the parser object.
  308.  
  309. The return value from eof() is a reference to the parser object.
  310.  
  311. =back
  312.  
  313.  
  314. Most parser options are controlled by boolean attributes.
  315. Each boolean attribute is enabled by calling the corresponding method
  316. with a TRUE argument and disabled with a FALSE argument.  The
  317. attribute value is left unchanged if no argument is given.  The return
  318. value from each method is the old attribute value.
  319.  
  320. Methods that can be used to get and/or set parser options are:
  321.  
  322. =over
  323.  
  324. =item $p->attr_encoded
  325.  
  326. =item $p->attr_encoded( $bool )
  327.  
  328. By default, the C<attr> and C<@attr> argspecs will have general
  329. entities for attribute values decoded.  Enabling this attribute leaves
  330. entities alone.
  331.  
  332. =item $p->backquote
  333.  
  334. =item $p->backquote( $bool )
  335.  
  336. By default, only ' and " are recognized as quote characters around
  337. attribute values.  MSIE also recognizes backquotes for some reason.
  338. Enabling this attribute provides compatibility with this behaviour.
  339.  
  340. =item $p->boolean_attribute_value( $val )
  341.  
  342. This method sets the value reported for boolean attributes inside HTML
  343. start tags.  By default, the name of the attribute is also used as its
  344. value.  This affects the values reported for C<tokens> and C<attr>
  345. argspecs.
  346.  
  347. =item $p->case_sensitive
  348.  
  349. =item $p->case_sensitive( $bool )
  350.  
  351. By default, tagnames and attribute names are down-cased.  Enabling this
  352. attribute leaves them as found in the HTML source document.
  353.  
  354. =item $p->closing_plaintext
  355.  
  356. =item $p->closing_plaintext( $bool )
  357.  
  358. By default, "plaintext" element can never be closed. Everything up to
  359. the end of the document is parsed in CDATA mode.  This historical
  360. behaviour is what at least MSIE does.  Enabling this attribute makes
  361. closing "</plaintext>" tag effective and the parsing process will resume
  362. after seeing this tag.  This emulates early gecko-based browsers.
  363.  
  364. =item $p->empty_element_tags
  365.  
  366. =item $p->empty_element_tags( $bool )
  367.  
  368. By default, empty element tags are not recognized as such and the "/"
  369. before ">" is just treated like a normal name character (unless
  370. C<strict_names> is enabled).  Enabling this attribute make
  371. C<HTML::Parser> recognize these tags.
  372.  
  373. Empty element tags look like start tags, but end with the character
  374. sequence "/>" instead of ">".  When recognized by C<HTML::Parser> they
  375. cause an artificial end event in addition to the start event.  The
  376. C<text> for the artificial end event will be empty and the C<tokenpos>
  377. array will be undefined even though the the token array will have one
  378. element containing the tag name.
  379.  
  380. =item $p->marked_sections
  381.  
  382. =item $p->marked_sections( $bool )
  383.  
  384. By default, section markings like <![CDATA[...]]> are treated like
  385. ordinary text.  When this attribute is enabled section markings are
  386. honoured.
  387.  
  388. There are currently no events associated with the marked section
  389. markup, but the text can be returned as C<skipped_text>.
  390.  
  391. =item $p->strict_comment
  392.  
  393. =item $p->strict_comment( $bool )
  394.  
  395. By default, comments are terminated by the first occurrence of "-->".
  396. This is the behaviour of most popular browsers (like Mozilla, Opera and
  397. MSIE), but it is not correct according to the official HTML
  398. standard.  Officially, you need an even number of "--" tokens before
  399. the closing ">" is recognized and there may not be anything but
  400. whitespace between an even and an odd "--".
  401.  
  402. The official behaviour is enabled by enabling this attribute.
  403.  
  404. Enabling of 'strict_comment' also disables recognizing these forms as
  405. comments:
  406.  
  407.   </ comment>
  408.   <! comment>
  409.  
  410.  
  411. =item $p->strict_end
  412.  
  413. =item $p->strict_end( $bool )
  414.  
  415. By default, attributes and other junk are allowed to be present on end tags in a
  416. manner that emulates MSIE's behaviour.
  417.  
  418. The official behaviour is enabled with this attribute.  If enabled,
  419. only whitespace is allowed between the tagname and the final ">".
  420.  
  421. =item $p->strict_names
  422.  
  423. =item $p->strict_names( $bool )
  424.  
  425. By default, almost anything is allowed in tag and attribute names.
  426. This is the behaviour of most popular browsers and allows us to parse
  427. some broken tags with invalid attribute values like:
  428.  
  429.    <IMG SRC=newprevlstGr.gif ALT=[PREV LIST] BORDER=0>
  430.  
  431. By default, "LIST]" is parsed as a boolean attribute, not as
  432. part of the ALT value as was clearly intended.  This is also what
  433. Mozilla sees.
  434.  
  435. The official behaviour is enabled by enabling this attribute.  If
  436. enabled, it will cause the tag above to be reported as text
  437. since "LIST]" is not a legal attribute name.
  438.  
  439. =item $p->unbroken_text
  440.  
  441. =item $p->unbroken_text( $bool )
  442.  
  443. By default, blocks of text are given to the text handler as soon as
  444. possible (but the parser takes care always to break text at a
  445. boundary between whitespace and non-whitespace so single words and
  446. entities can always be decoded safely).  This might create breaks that
  447. make it hard to do transformations on the text. When this attribute is
  448. enabled, blocks of text are always reported in one piece.  This will
  449. delay the text event until the following (non-text) event has been
  450. recognized by the parser.
  451.  
  452. Note that the C<offset> argspec will give you the offset of the first
  453. segment of text and C<length> is the combined length of the segments.
  454. Since there might be ignored tags in between, these numbers can't be
  455. used to directly index in the original document file.
  456.  
  457. =item $p->utf8_mode
  458.  
  459. =item $p->utf8_mode( $bool )
  460.  
  461. Enable this option when parsing raw undecoded UTF-8.  This tells the
  462. parser that the entities expanded for strings reported by C<attr>,
  463. C<@attr> and C<dtext> should be expanded as decoded UTF-8 so they end
  464. up compatible with the surrounding text.
  465.  
  466. If C<utf8_mode> is enabled then it is an error to pass strings
  467. containing characters with code above 255 to the parse() method, and
  468. the parse() method will croak if you try.
  469.  
  470. Example: The Unicode character "\x{2665}" is "\xE2\x99\xA5" when UTF-8
  471. encoded.  The character can also be represented by the entity
  472. "♥" or "♥".  If we feed the parser:
  473.  
  474.   $p->parse("\xE2\x99\xA5♥");
  475.  
  476. then C<dtext> will be reported as "\xE2\x99\xA5\x{2665}" without
  477. C<utf8_mode> enabled, but as "\xE2\x99\xA5\xE2\x99\xA5" when enabled.
  478. The later string is what you want.
  479.  
  480. This option is only available with perl-5.8 or better.
  481.  
  482. =item $p->xml_mode
  483.  
  484. =item $p->xml_mode( $bool )
  485.  
  486. Enabling this attribute changes the parser to allow some XML
  487. constructs.  This enables the behaviour controlled by individually by
  488. the C<case_sensitive>, C<empty_element_tags>, C<strict_names> and
  489. C<xml_pic> attributes and also suppresses special treatment of
  490. elements that are parsed as CDATA for HTML.
  491.  
  492. =item $p->xml_pic
  493.  
  494. =item $p->xml_pic( $bool )
  495.  
  496. By default, I<processing instructions> are terminated by ">". When
  497. this attribute is enabled, processing instructions are terminated by
  498. "?>" instead.
  499.  
  500. =back
  501.  
  502. As markup and text is recognized, handlers are invoked.  The following
  503. method is used to set up handlers for different events:
  504.  
  505. =over
  506.  
  507. =item $p->handler( event => \&subroutine, $argspec )
  508.  
  509. =item $p->handler( event => $method_name, $argspec )
  510.  
  511. =item $p->handler( event => \@accum, $argspec )
  512.  
  513. =item $p->handler( event => "" );
  514.  
  515. =item $p->handler( event => undef );
  516.  
  517. =item $p->handler( event );
  518.  
  519. This method assigns a subroutine, method, or array to handle an event.
  520.  
  521. Event is one of C<text>, C<start>, C<end>, C<declaration>, C<comment>,
  522. C<process>, C<start_document>, C<end_document> or C<default>.
  523.  
  524. The C<\&subroutine> is a reference to a subroutine which is called to handle
  525. the event.
  526.  
  527. The C<$method_name> is the name of a method of $p which is called to handle
  528. the event.
  529.  
  530. The C<@accum> is an array that will hold the event information as
  531. sub-arrays.
  532.  
  533. If the second argument is "", the event is ignored.
  534. If it is undef, the default handler is invoked for the event.
  535.  
  536. The C<$argspec> is a string that describes the information to be reported
  537. for the event.  Any requested information that does not apply to a
  538. specific event is passed as C<undef>.  If argspec is omitted, then it
  539. is left unchanged.
  540.  
  541. The return value from $p->handler is the old callback routine or a
  542. reference to the accumulator array.
  543.  
  544. Any return values from handler callback routines/methods are always
  545. ignored.  A handler callback can request parsing to be aborted by
  546. invoking the $p->eof method.  A handler callback is not allowed to
  547. invoke the $p->parse() or $p->parse_file() method.  An exception will
  548. be raised if it tries.
  549.  
  550. Examples:
  551.  
  552.     $p->handler(start =>  "start", 'self, attr, attrseq, text' );
  553.  
  554. This causes the "start" method of object $p to be called for 'start' events.
  555. The callback signature is $p->start(\%attr, \@attr_seq, $text).
  556.  
  557.     $p->handler(start =>  \&start, 'attr, attrseq, text' );
  558.  
  559. This causes subroutine start() to be called for 'start' events.
  560. The callback signature is start(\%attr, \@attr_seq, $text).
  561.  
  562.     $p->handler(start =>  \@accum, '"S", attr, attrseq, text' );
  563.  
  564. This causes 'start' event information to be saved in @accum.
  565. The array elements will be ['S', \%attr, \@attr_seq, $text].
  566.  
  567.    $p->handler(start => "");
  568.  
  569. This causes 'start' events to be ignored.  It also suppresses
  570. invocations of any default handler for start events.  It is in most
  571. cases equivalent to $p->handler(start => sub {}), but is more
  572. efficient.  It is different from the empty-sub-handler in that
  573. C<skipped_text> is not reset by it.
  574.  
  575.    $p->handler(start => undef);
  576.  
  577. This causes no handler to be associated with start events.
  578. If there is a default handler it will be invoked.
  579.  
  580. =back
  581.  
  582. Filters based on tags can be set up to limit the number of events
  583. reported.  The main bottleneck during parsing is often the huge number
  584. of callbacks made from the parser.  Applying filters can improve
  585. performance significantly.
  586.  
  587. The following methods control filters:
  588.  
  589. =over
  590.  
  591. =item $p->ignore_elements( @tags )
  592.  
  593. Both the C<start> event and the C<end> event as well as any events that
  594. would be reported in between are suppressed.  The ignored elements can
  595. contain nested occurrences of itself.  Example:
  596.  
  597.    $p->ignore_elements(qw(script style));
  598.  
  599. The C<script> and C<style> tags will always nest properly since their
  600. content is parsed in CDATA mode.  For most other tags
  601. C<ignore_elements> must be used with caution since HTML is often not
  602. I<well formed>.
  603.  
  604. =item $p->ignore_tags( @tags )
  605.  
  606. Any C<start> and C<end> events involving any of the tags given are
  607. suppressed.  To reset the filter (i.e. don't suppress any C<start> and
  608. C<end> events), call C<ignore_tags> without an argument.
  609.  
  610. =item $p->report_tags( @tags )
  611.  
  612. Any C<start> and C<end> events involving any of the tags I<not> given
  613. are suppressed.  To reset the filter (i.e. report all C<start> and
  614. C<end> events), call C<report_tags> without an argument.
  615.  
  616. =back
  617.  
  618. Internally, the system has two filter lists, one for C<report_tags>
  619. and one for C<ignore_tags>, and both filters are applied.  This
  620. effectively gives C<ignore_tags> precedence over C<report_tags>.
  621.  
  622. Examples:
  623.  
  624.    $p->ignore_tags(qw(style));
  625.    $p->report_tags(qw(script style));
  626.  
  627. results in only C<script> events being reported.
  628.  
  629. =head2 Argspec
  630.  
  631. Argspec is a string containing a comma-separated list that describes
  632. the information reported by the event.  The following argspec
  633. identifier names can be used:
  634.  
  635. =over
  636.  
  637. =item C<attr>
  638.  
  639. Attr causes a reference to a hash of attribute name/value pairs to be
  640. passed.
  641.  
  642. Boolean attributes' values are either the value set by
  643. $p->boolean_attribute_value, or the attribute name if no value has been
  644. set by $p->boolean_attribute_value.
  645.  
  646. This passes undef except for C<start> events.
  647.  
  648. Unless C<xml_mode> or C<case_sensitive> is enabled, the attribute
  649. names are forced to lower case.
  650.  
  651. General entities are decoded in the attribute values and
  652. one layer of matching quotes enclosing the attribute values is removed.
  653.  
  654. The Unicode character set is assumed for entity decoding.  With Perl
  655. version 5.6 or earlier only the Latin-1 range is supported, and
  656. entities for characters outside the range 0..255 are left unchanged.
  657.  
  658. =item C<@attr>
  659.  
  660. Basically the same as C<attr>, but keys and values are passed as
  661. individual arguments and the original sequence of the attributes is
  662. kept.  The parameters passed will be the same as the @attr calculated
  663. here:
  664.  
  665.    @attr = map { $_ => $attr->{$_} } @$attrseq;
  666.  
  667. assuming $attr and $attrseq here are the hash and array passed as the
  668. result of C<attr> and C<attrseq> argspecs.
  669.  
  670. This passes no values for events besides C<start>.
  671.  
  672. =item C<attrseq>
  673.  
  674. Attrseq causes a reference to an array of attribute names to be
  675. passed.  This can be useful if you want to walk the C<attr> hash in
  676. the original sequence.
  677.  
  678. This passes undef except for C<start> events.
  679.  
  680. Unless C<xml_mode> or C<case_sensitive> is enabled, the attribute
  681. names are forced to lower case.
  682.  
  683. =item C<column>
  684.  
  685. Column causes the column number of the start of the event to be passed.
  686. The first column on a line is 0.
  687.  
  688. =item C<dtext>
  689.  
  690. Dtext causes the decoded text to be passed.  General entities are
  691. automatically decoded unless the event was inside a CDATA section or
  692. was between literal start and end tags (C<script>, C<style>,
  693. C<xmp>, C<iframe>, C<title>, C<textarea> and C<plaintext>).
  694.  
  695. The Unicode character set is assumed for entity decoding.  With Perl
  696. version 5.6 or earlier only the Latin-1 range is supported, and
  697. entities for characters outside the range 0..255 are left unchanged.
  698.  
  699. This passes undef except for C<text> events.
  700.  
  701. =item C<event>
  702.  
  703. Event causes the event name to be passed.
  704.  
  705. The event name is one of C<text>, C<start>, C<end>, C<declaration>,
  706. C<comment>, C<process>, C<start_document> or C<end_document>.
  707.  
  708. =item C<is_cdata>
  709.  
  710. Is_cdata causes a TRUE value to be passed if the event is inside a CDATA
  711. section or between literal start and end tags (C<script>,
  712. C<style>, C<xmp>, C<iframe>, C<title>, C<textarea> and C<plaintext>).
  713.  
  714. if the flag is FALSE for a text event, then you should normally
  715. either use C<dtext> or decode the entities yourself before the text is
  716. processed further.
  717.  
  718. =item C<length>
  719.  
  720. Length causes the number of bytes of the source text of the event to
  721. be passed.
  722.  
  723. =item C<line>
  724.  
  725. Line causes the line number of the start of the event to be passed.
  726. The first line in the document is 1.  Line counting doesn't start
  727. until at least one handler requests this value to be reported.
  728.  
  729. =item C<offset>
  730.  
  731. Offset causes the byte position in the HTML document of the start of
  732. the event to be passed.  The first byte in the document has offset 0.
  733.  
  734. =item C<offset_end>
  735.  
  736. Offset_end causes the byte position in the HTML document of the end of
  737. the event to be passed.  This is the same as C<offset> + C<length>.
  738.  
  739. =item C<self>
  740.  
  741. Self causes the current object to be passed to the handler.  If the
  742. handler is a method, this must be the first element in the argspec.
  743.  
  744. An alternative to passing self as an argspec is to register closures
  745. that capture $self by themselves as handlers.  Unfortunately this
  746. creates circular references which prevent the HTML::Parser object
  747. from being garbage collected.  Using the C<self> argspec avoids this
  748. problem.
  749.  
  750. =item C<skipped_text>
  751.  
  752. Skipped_text returns the concatenated text of all the events that have
  753. been skipped since the last time an event was reported.  Events might
  754. be skipped because no handler is registered for them or because some
  755. filter applies.  Skipped text also includes marked section markup,
  756. since there are no events that can catch it.
  757.  
  758. If an C<"">-handler is registered for an event, then the text for this
  759. event is not included in C<skipped_text>.  Skipped text both before
  760. and after the C<"">-event is included in the next reported
  761. C<skipped_text>.
  762.  
  763. =item C<tag>
  764.  
  765. Same as C<tagname>, but prefixed with "/" if it belongs to an C<end>
  766. event and "!" for a declaration.  The C<tag> does not have any prefix
  767. for C<start> events, and is in this case identical to C<tagname>.
  768.  
  769. =item C<tagname>
  770.  
  771. This is the element name (or I<generic identifier> in SGML jargon) for
  772. start and end tags.  Since HTML is case insensitive, this name is
  773. forced to lower case to ease string matching.
  774.  
  775. Since XML is case sensitive, the tagname case is not changed when
  776. C<xml_mode> is enabled.  The same happens if the C<case_sensitive> attribute
  777. is set.
  778.  
  779. The declaration type of declaration elements is also passed as a tagname,
  780. even if that is a bit strange.
  781. In fact, in the current implementation tagname is
  782. identical to C<token0> except that the name may be forced to lower case.
  783.  
  784. =item C<token0>
  785.  
  786. Token0 causes the original text of the first token string to be
  787. passed.  This should always be the same as $tokens->[0].
  788.  
  789. For C<declaration> events, this is the declaration type.
  790.  
  791. For C<start> and C<end> events, this is the tag name.
  792.  
  793. For C<process> and non-strict C<comment> events, this is everything
  794. inside the tag.
  795.  
  796. This passes undef if there are no tokens in the event.
  797.  
  798. =item C<tokenpos>
  799.  
  800. Tokenpos causes a reference to an array of token positions to be
  801. passed.  For each string that appears in C<tokens>, this array
  802. contains two numbers.  The first number is the offset of the start of
  803. the token in the original C<text> and the second number is the length
  804. of the token.
  805.  
  806. Boolean attributes in a C<start> event will have (0,0) for the
  807. attribute value offset and length.
  808.  
  809. This passes undef if there are no tokens in the event (e.g., C<text>)
  810. and for artificial C<end> events triggered by empty element tags.
  811.  
  812. If you are using these offsets and lengths to modify C<text>, you
  813. should either work from right to left, or be very careful to calculate
  814. the changes to the offsets.
  815.  
  816. =item C<tokens>
  817.  
  818. Tokens causes a reference to an array of token strings to be passed.
  819. The strings are exactly as they were found in the original text,
  820. no decoding or case changes are applied.
  821.  
  822. For C<declaration> events, the array contains each word, comment, and
  823. delimited string starting with the declaration type.
  824.  
  825. For C<comment> events, this contains each sub-comment.  If
  826. $p->strict_comments is disabled, there will be only one sub-comment.
  827.  
  828. For C<start> events, this contains the original tag name followed by
  829. the attribute name/value pairs.  The values of boolean attributes will
  830. be either the value set by $p->boolean_attribute_value, or the
  831. attribute name if no value has been set by
  832. $p->boolean_attribute_value.
  833.  
  834. For C<end> events, this contains the original tag name (always one token).
  835.  
  836. For C<process> events, this contains the process instructions (always one
  837. token).
  838.  
  839. This passes C<undef> for C<text> events.
  840.  
  841. =item C<text>
  842.  
  843. Text causes the source text (including markup element delimiters) to be
  844. passed.
  845.  
  846. =item C<undef>
  847.  
  848. Pass an undefined value.  Useful as padding where the same handler
  849. routine is registered for multiple events.
  850.  
  851. =item C<'...'>
  852.  
  853. A literal string of 0 to 255 characters enclosed
  854. in single (') or double (") quotes is passed as entered.
  855.  
  856. =back
  857.  
  858. The whole argspec string can be wrapped up in C<'@{...}'> to signal
  859. that the resulting event array should be flattened.  This only makes a
  860. difference if an array reference is used as the handler target.
  861. Consider this example:
  862.  
  863.    $p->handler(text => [], 'text');
  864.    $p->handler(text => [], '@{text}']);
  865.  
  866. With two text events; C<"foo">, C<"bar">; then the first example will end
  867. up with [["foo"], ["bar"]] and the second with ["foo", "bar"] in
  868. the handler target array.
  869.  
  870.  
  871. =head2 Events
  872.  
  873. Handlers for the following events can be registered:
  874.  
  875. =over
  876.  
  877. =item C<comment>
  878.  
  879. This event is triggered when a markup comment is recognized.
  880.  
  881. Example:
  882.  
  883.   <!-- This is a comment -- -- So is this -->
  884.  
  885. =item C<declaration>
  886.  
  887. This event is triggered when a I<markup declaration> is recognized.
  888.  
  889. For typical HTML documents, the only declaration you are
  890. likely to find is <!DOCTYPE ...>.
  891.  
  892. Example:
  893.  
  894.   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  895.   "http://www.w3.org/TR/html40/strict.dtd">
  896.  
  897. DTDs inside <!DOCTYPE ...> will confuse HTML::Parser.
  898.  
  899. =item C<default>
  900.  
  901. This event is triggered for events that do not have a specific
  902. handler.  You can set up a handler for this event to catch stuff you
  903. did not want to catch explicitly.
  904.  
  905. =item C<end>
  906.  
  907. This event is triggered when an end tag is recognized.
  908.  
  909. Example:
  910.  
  911.   </A>
  912.  
  913. =item C<end_document>
  914.  
  915. This event is triggered when $p->eof is called and after any remaining
  916. text is flushed.  There is no document text associated with this event.
  917.  
  918. =item C<process>
  919.  
  920. This event is triggered when a processing instructions markup is
  921. recognized.
  922.  
  923. The format and content of processing instructions are system and
  924. application dependent.
  925.  
  926. Examples:
  927.  
  928.   <? HTML processing instructions >
  929.   <? XML processing instructions ?>
  930.  
  931. =item C<start>
  932.  
  933. This event is triggered when a start tag is recognized.
  934.  
  935. Example:
  936.  
  937.   <A HREF="http://www.perl.com/">
  938.  
  939. =item C<start_document>
  940.  
  941. This event is triggered before any other events for a new document.  A
  942. handler for it can be used to initialize stuff.  There is no document
  943. text associated with this event.
  944.  
  945. =item C<text>
  946.  
  947. This event is triggered when plain text (characters) is recognized.
  948. The text may contain multiple lines.  A sequence of text may be broken
  949. between several text events unless $p->unbroken_text is enabled.
  950.  
  951. The parser will make sure that it does not break a word or a sequence
  952. of whitespace between two text events.
  953.  
  954. =back
  955.  
  956. =head2 Unicode
  957.  
  958. The C<HTML::Parser> can parse Unicode strings when running under
  959. perl-5.8 or better.  If Unicode is passed to $p->parse() then chunks
  960. of Unicode will be reported to the handlers.  The offset and length
  961. argspecs will also report their position in terms of characters.
  962.  
  963. It is safe to parse raw undecoded UTF-8 if you either avoid decoding
  964. entities and make sure to not use I<argspecs> that do, or enable the
  965. C<utf8_mode> for the parser.  Parsing of undecoded UTF-8 might be
  966. useful when parsing from a file where you need the reported offsets
  967. and lengths to match the byte offsets in the file.
  968.  
  969. If a filename is passed to $p->parse_file() then the file will be read
  970. in binary mode.  This will be fine if the file contains only ASCII or
  971. Latin-1 characters.  If the file contains UTF-8 encoded text then care
  972. must be taken when decoding entities as described in the previous
  973. paragraph, but better is to open the file with the UTF-8 layer so that
  974. it is decoded properly:
  975.  
  976.    open(my $fh, "<:utf8", "index.html") || die "...: $!";
  977.    $p->parse_file($fh);
  978.  
  979. If the file contains text encoded in a charset besides ASCII, Latin-1
  980. or UTF-8 then decoding will always be needed.
  981.  
  982. =head1 VERSION 2 COMPATIBILITY
  983.  
  984. When an C<HTML::Parser> object is constructed with no arguments, a set
  985. of handlers is automatically provided that is compatible with the old
  986. HTML::Parser version 2 callback methods.
  987.  
  988. This is equivalent to the following method calls:
  989.  
  990.    $p->handler(start   => "start",   "self, tagname, attr, attrseq, text");
  991.    $p->handler(end     => "end",     "self, tagname, text");
  992.    $p->handler(text    => "text",    "self, text, is_cdata");
  993.    $p->handler(process => "process", "self, token0, text");
  994.    $p->handler(comment =>
  995.              sub {
  996.          my($self, $tokens) = @_;
  997.          for (@$tokens) {$self->comment($_);}},
  998.              "self, tokens");
  999.    $p->handler(declaration =>
  1000.              sub {
  1001.          my $self = shift;
  1002.          $self->declaration(substr($_[0], 2, -1));},
  1003.              "self, text");
  1004.  
  1005. Setting up these handlers can also be requested with the "api_version =>
  1006. 2" constructor option.
  1007.  
  1008. =head1 SUBCLASSING
  1009.  
  1010. The C<HTML::Parser> class is subclassable.  Parser objects are plain
  1011. hashes and C<HTML::Parser> reserves only hash keys that start with
  1012. "_hparser".  The parser state can be set up by invoking the init()
  1013. method, which takes the same arguments as new().
  1014.  
  1015. =head1 EXAMPLES
  1016.  
  1017. The first simple example shows how you might strip out comments from
  1018. an HTML document.  We achieve this by setting up a comment handler that
  1019. does nothing and a default handler that will print out anything else:
  1020.  
  1021.   use HTML::Parser;
  1022.   HTML::Parser->new(default_h => [sub { print shift }, 'text'],
  1023.                     comment_h => [""],
  1024.                    )->parse_file(shift || die) || die $!;
  1025.  
  1026. An alternative implementation is:
  1027.  
  1028.   use HTML::Parser;
  1029.   HTML::Parser->new(end_document_h => [sub { print shift },
  1030.                                        'skipped_text'],
  1031.                     comment_h      => [""],
  1032.                    )->parse_file(shift || die) || die $!;
  1033.  
  1034. This will in most cases be much more efficient since only a single
  1035. callback will be made.
  1036.  
  1037. The next example prints out the text that is inside the <title>
  1038. element of an HTML document.  Here we start by setting up a start
  1039. handler.  When it sees the title start tag it enables a text handler
  1040. that prints any text found and an end handler that will terminate
  1041. parsing as soon as the title end tag is seen:
  1042.  
  1043.   use HTML::Parser ();
  1044.  
  1045.   sub start_handler
  1046.   {
  1047.     return if shift ne "title";
  1048.     my $self = shift;
  1049.     $self->handler(text => sub { print shift }, "dtext");
  1050.     $self->handler(end  => sub { shift->eof if shift eq "title"; },
  1051.                    "tagname,self");
  1052.   }
  1053.  
  1054.   my $p = HTML::Parser->new(api_version => 3);
  1055.   $p->handler( start => \&start_handler, "tagname,self");
  1056.   $p->parse_file(shift || die) || die $!;
  1057.   print "\n";
  1058.  
  1059. On a Debian box, more examples can be found in the
  1060. /usr/share/doc/libhtml-parser-perl/examples directory.
  1061. The program C<hrefsub> shows how you can edit all links
  1062. found in a document and C<htextsub> how to edit the text only; the
  1063. program C<hstrip> shows how you can strip out certain tags/elements
  1064. and/or attributes; and the program C<htext> show how to obtain the
  1065. plain text, but not any script/style content.
  1066.  
  1067. You can browse the F<eg/> directory online from the I<[Browse]> link on
  1068. the http://search.cpan.org/~gaas/HTML-Parser/ page.
  1069.  
  1070. =head1 BUGS
  1071.  
  1072. The <style> and <script> sections do not end with the first "</", but
  1073. need the complete corresponding end tag.  The standard behaviour is
  1074. not really practical.
  1075.  
  1076. When the I<strict_comment> option is enabled, we still recognize
  1077. comments where there is something other than whitespace between even
  1078. and odd "--" markers.
  1079.  
  1080. Once $p->boolean_attribute_value has been set, there is no way to
  1081. restore the default behaviour.
  1082.  
  1083. There is currently no way to get both quote characters
  1084. into the same literal argspec.
  1085.  
  1086. Empty tags, e.g. "<>" and "</>", are not recognized.  SGML allows them
  1087. to repeat the previous start tag or close the previous start tag
  1088. respectively.
  1089.  
  1090. NET tags, e.g. "code/.../" are not recognized.  This is SGML
  1091. shorthand for "<code>...</code>".
  1092.  
  1093. Unclosed start or end tags, e.g. "<tt<b>...</b</tt>" are not
  1094. recognized.
  1095.  
  1096. =head1 DIAGNOSTICS
  1097.  
  1098. The following messages may be produced by HTML::Parser.  The notation
  1099. in this listing is the same as used in L<perldiag>:
  1100.  
  1101. =over
  1102.  
  1103. =item Not a reference to a hash
  1104.  
  1105. (F) The object blessed into or subclassed from HTML::Parser is not a
  1106. hash as required by the HTML::Parser methods.
  1107.  
  1108. =item Bad signature in parser state object at %p
  1109.  
  1110. (F) The _hparser_xs_state element does not refer to a valid state structure.
  1111. Something must have changed the internal value
  1112. stored in this hash element, or the memory has been overwritten.
  1113.  
  1114. =item _hparser_xs_state element is not a reference
  1115.  
  1116. (F) The _hparser_xs_state element has been destroyed.
  1117.  
  1118. =item Can't find '_hparser_xs_state' element in HTML::Parser hash
  1119.  
  1120. (F) The _hparser_xs_state element is missing from the parser hash.
  1121. It was either deleted, or not created when the object was created.
  1122.  
  1123. =item API version %s not supported by HTML::Parser %s
  1124.  
  1125. (F) The constructor option 'api_version' with an argument greater than
  1126. or equal to 4 is reserved for future extensions.
  1127.  
  1128. =item Bad constructor option '%s'
  1129.  
  1130. (F) An unknown constructor option key was passed to the new() or
  1131. init() methods.
  1132.  
  1133. =item Parse loop not allowed
  1134.  
  1135. (F) A handler invoked the parse() or parse_file() method.
  1136. This is not permitted.
  1137.  
  1138. =item marked sections not supported
  1139.  
  1140. (F) The $p->marked_sections() method was invoked in a HTML::Parser
  1141. module that was compiled without support for marked sections.
  1142.  
  1143. =item Unknown boolean attribute (%d)
  1144.  
  1145. (F) Something is wrong with the internal logic that set up aliases for
  1146. boolean attributes.
  1147.  
  1148. =item Only code or array references allowed as handler
  1149.  
  1150. (F) The second argument for $p->handler must be either a subroutine
  1151. reference, then name of a subroutine or method, or a reference to an
  1152. array.
  1153.  
  1154. =item No handler for %s events
  1155.  
  1156. (F) The first argument to $p->handler must be a valid event name; i.e. one
  1157. of "start", "end", "text", "process", "declaration" or "comment".
  1158.  
  1159. =item Unrecognized identifier %s in argspec
  1160.  
  1161. (F) The identifier is not a known argspec name.
  1162. Use one of the names mentioned in the argspec section above.
  1163.  
  1164. =item Literal string is longer than 255 chars in argspec
  1165.  
  1166. (F) The current implementation limits the length of literals in
  1167. an argspec to 255 characters.  Make the literal shorter.
  1168.  
  1169. =item Backslash reserved for literal string in argspec
  1170.  
  1171. (F) The backslash character "\" is not allowed in argspec literals.
  1172. It is reserved to permit quoting inside a literal in a later version.
  1173.  
  1174. =item Unterminated literal string in argspec
  1175.  
  1176. (F) The terminating quote character for a literal was not found.
  1177.  
  1178. =item Bad argspec (%s)
  1179.  
  1180. (F) Only identifier names, literals, spaces and commas
  1181. are allowed in argspecs.
  1182.  
  1183. =item Missing comma separator in argspec
  1184.  
  1185. (F) Identifiers in an argspec must be separated with ",".
  1186.  
  1187. =item Parsing of undecoded UTF-8 will give garbage when decoding entities
  1188.  
  1189. (W) The first chunk parsed appears to contain undecoded UTF-8 and one
  1190. or more argspecs that decode entities are used for the callback
  1191. handlers.
  1192.  
  1193. The result of decoding will be a mix of encoded and decoded characters
  1194. for any entities that expand to characters with code above 127.  This
  1195. is not a good thing.
  1196.  
  1197. The solution is to use the Encode::encode_utf8() on the data before
  1198. feeding it to the $p->parse().  For $p->parse_file() pass a file that
  1199. has been opened in ":utf8" mode.
  1200.  
  1201. The parser can process raw undecoded UTF-8 sanely if the C<utf8_mode>
  1202. is enabled or if the "attr", "@attr" or "dtext" argspecs is avoided.
  1203.  
  1204. =item Parsing string decoded with wrong endianness
  1205.  
  1206. (W) The first character in the document is U+FFFE.  This is not a
  1207. legal Unicode character but a byte swapped BOM.  The result of parsing
  1208. will likely be garbage.
  1209.  
  1210. =item Parsing of undecoded UTF-32
  1211.  
  1212. (W) The parser found the Unicode UTF-32 BOM signature at the start
  1213. of the document.  The result of parsing will likely be garbage.
  1214.  
  1215. =item Parsing of undecoded UTF-16
  1216.  
  1217. (W) The parser found the Unicode UTF-16 BOM signature at the start of
  1218. the document.  The result of parsing will likely be garbage.
  1219.  
  1220. =back
  1221.  
  1222. =head1 SEE ALSO
  1223.  
  1224. L<HTML::Entities>, L<HTML::PullParser>, L<HTML::TokeParser>, L<HTML::HeadParser>,
  1225. L<HTML::LinkExtor>, L<HTML::Form>
  1226.  
  1227. L<HTML::TreeBuilder> (part of the I<HTML-Tree> distribution)
  1228.  
  1229. http://www.w3.org/TR/html4
  1230.  
  1231. More information about marked sections and processing instructions may
  1232. be found at C<http://www.sgml.u-net.com/book/sgml-8.htm>.
  1233.  
  1234. =head1 COPYRIGHT
  1235.  
  1236.  Copyright 1996-2008 Gisle Aas. All rights reserved.
  1237.  Copyright 1999-2000 Michael A. Chase.  All rights reserved.
  1238.  
  1239. This library is free software; you can redistribute it and/or
  1240. modify it under the same terms as Perl itself.
  1241.  
  1242. =cut
  1243.